SUPPORT / SAMPLES & SAS NOTES
 

Support

Problem Note 55060: SAS® Drug Development 4.5 - Index files created using PROC DATASETS, DATA statement, or PROC SQL are not listed in a job Manifest

DetailsAboutRate It

SAS® Drug Development relies on PROC SCAPROC to list inputs and outputs for a job Manifest or in a SAS® Session.

Consider this program:

   proc scaproc;

      record 'c:\temp\index.txt';

   run;

   libname out "c:\temp\";

   data out.index_air(index=(date=(date)));

       set sashelp.air;

       idvar = _n_;

       idvar2 = _n_ + 100;

   run;

   proc datasets library=out nolist;

      modify index_air ;

      index create compositeidvar=(idvar date) / nomiss unique;

   quit;

   proc sql noprint;

      create unique index index_air_again on out.index_air (idvar2, date);

   quit;

   proc scaproc ;

       write;

   run;

There is no notification in the index.txt file that indicates index_air.sas7bndx file has been created as an OUTPUT. The index_air.sas7bndx file defines the index the index_air SAS® data set and that should appear in the job Manifest.



Operating System and Release Information

Product FamilyProductSystemProduct ReleaseSAS Release
ReportedFixed*ReportedFixed*
SAS SystemSAS Drug DevelopmentLinux for x644.5.19.4 TS1M2
SAS SystemSAS Life Science Analytics FrameworkLinux for x644.75.1.19.4 TS1M39.4 TS1M5
* For software releases that are not yet generally available, the Fixed Release is the software release in which the problem is planned to be fixed.